home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Source / GNU / libg++ / libio / iolibio.h < prev    next >
C/C++ Source or Header  |  1994-02-15  |  2KB  |  48 lines

  1. #pragma cplusplus
  2. #include "libio.h"
  3.  
  4. /* These emulate stdio functionality, but with a different name
  5.    (_IO_ungetc instead of ungetc), and using _IO_FILE instead of FILE. */
  6.  
  7. extern int _IO_fclose _PARAMS((_IO_FILE*));
  8. extern _IO_FILE *_IO_fdopen _PARAMS((int, const char*));
  9. extern int _IO_fflush _PARAMS((_IO_FILE*));
  10. extern int _IO_fgetpos _PARAMS((_IO_FILE*, _IO_fpos_t*));
  11. extern char* _IO_fgets _PARAMS((char*, int, _IO_FILE*));
  12. extern _IO_FILE *_IO_fopen _PARAMS((const char*, const char*));
  13. extern int _IO_fprintf _PARAMS((_IO_FILE*, const char*, ...));
  14. extern int _IO_fputs _PARAMS((const char*, _IO_FILE*));
  15. extern int _IO_fsetpos _PARAMS((_IO_FILE*, const _IO_fpos_t *));
  16. extern long int _IO_ftell _PARAMS((_IO_FILE*));
  17. extern _IO_size_t _IO_fwrite _PARAMS((const void*,
  18.                       _IO_size_t, _IO_size_t, _IO_FILE*));
  19. extern char* _IO_gets _PARAMS((char*));
  20. extern void _IO_perror _PARAMS((const char*));
  21. extern int _IO_puts _PARAMS((const char*));
  22. extern int _IO_scanf _PARAMS((const char*, ...));
  23. extern void _IO_setbuffer _PARAMS((_IO_FILE *, char*, _IO_size_t));
  24. extern int _IO_setvbuf _PARAMS((_IO_FILE*, char*, int, _IO_size_t));
  25. extern int _IO_sscanf _PARAMS((const char*, const char*, ...));
  26. extern int _IO_sprintf _PARAMS((char *, const char*, ...));
  27. extern int _IO_ungetc _PARAMS((int, _IO_FILE*));
  28. extern int _IO_vsscanf _PARAMS((const char *, const char *, _IO_va_list));
  29. extern int _IO_vsprintf _PARAMS((char*, const char*, _IO_va_list));
  30. #ifndef _IO_pos_BAD
  31. #define _IO_pos_BAD ((_IO_fpos_t)(-1))
  32. #endif
  33. #define _IO_clearerr(FP) ((FP)->_flags &= ~(_IO_ERR_SEEN|_IO_EOF_SEEN))
  34. #define _IO_feof(__fp) (((__fp)->_flags & _IO_EOF_SEEN) != 0)
  35. #define _IO_ferror(__fp) (((__fp)->_flags & _IO_ERR_SEEN) != 0)
  36. #define _IO_fseek(__fp, __offset, __whence) \
  37.   (_IO_seekoff(__fp, __offset, (_IO_off_t)(__whence)) == _IO_pos_BAD ? EOF : 0)
  38. #define _IO_rewind(FILE) (void)_IO_seekoff(FILE, 0, 0)
  39. #define _IO_vprintf(FORMAT, ARGS) _IO_vfprintf(_IO_stdout, FORMAT, ARGS)
  40. #define _IO_freopen(FILENAME, MODE, FP) \
  41.   (_IO_file_close_it(FP), _IO_file_fopen(FP, FILENAME, MODE))
  42. #define _IO_fileno(FP) ((FP)->_fileno)
  43. extern _IO_FILE* _IO_popen _PARAMS((const char*, const char*));
  44. #define _IO_pclose _IO_fclose
  45. #define _IO_setbuf(_FP, _BUF) _IO_setbuffer(_FP, _BUF, _IO_BUFSIZ)
  46. #define _IO_setlinebuf(_FP) _IO_setvbuf(_FP, NULL, 1, 0)
  47.  
  48.